/*styles the selected product page*/

*{
	box-sizing: border-box;
	margin: 0px;
	text-decoration: none;
}

body {
	background-color: #F5F5F5;
}

#title {
	position: absolute;
	left: 250px;
	top: 10px;
	font-size: 19px;
	color: #494747 !important;
}
a, a:hover, a:focus, a:active{
     text-decoration: none;
     color: inherit;
}

.container {
	display: flex;
	justify-content: space-around;
}

.container-div {
	width: 25%;
}

/*styling the elements*/

.container-div h2 {
	font-size: 27px;
	margin: 74px 0px 10px;
	letter-spacing: 0.5px
}

.container-div p {
	font-size: 20px;
	margin: 8px 0px;
}

#description {
	margin: 30px 0px;
	color: #494747;
	font-size: 18px;
}

.button {
	margin: 8px 0px 0px;
	width: 69%;
	height: 45px;
	color: white;
	border-radius: 3px;
	border: none;
	cursor: pointer;
}

#addBtn {
	background-color: #1E8A90;
}
#buyBtn {
	background-color: #000000;
}

details > summary {
    list-style-type: '+ ';
  
}

details[open] > summary {
    list-style-type: '- ';
}

.returns {
	margin: 40px 0px 10px;
}
.returns summary {
	font-size: 19px;
}

.returns ul li {
	margin: 10px 0px;
	font-size: 18px;
	color: #494747;
}

/*mobile view*/

@media (max-width: 700px) {

.row{

	display: block !important;
}
}

 .row{
	margin-right: 0px !important;
	margin-left: 3px !important;
}

.summary_pr{
	margin-top: 7%;
	margin-left: 1%;
}